Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Promise Orchestrator: Process promise-based tasks in series and parallel, controlling concurrency and throttling
Process promise-based tasks in series and parallel, controlling concurrency and throttling.
npm install porch
Promise porch(tasks, concurrency, interval, failFast)
tasks
(Array
): An array of tasks
, where each task is a function that
expects no arguments and will return a Promise
.concurrency
(Number
): Default: 1
. Maximum number of tasks to run
concurrently (in parallel).interval
(Number
): Default: 0
. Interval between each batch of
concurrent tasks.failFast
(Boolean
): Default: true
. Whether to bail out when one of the
promises fails. If set to false
errors will be included in the results
passed to then()
instead of being passed independently via the catch()
method.A Promise
that will resolve to an array with the results for each task.
Results will be in the same order as in the input tasks array.
Process each task after the other, sequentially. Each task will wait for the
previous one to complete. Concurrency set to 1
(one task at a time).
import porch from 'porch';
const tasks = users.map(user => () => auth.deleteUser(user.localId);
porch(tasks)
.then(console.log)
.catch(console.error);
Process tasks in batches based on a given concurrency. In this example tasks will be processed in batches of 5 tasks each. Each batch waits for the previous one to complete and then performs its tasks in parallel.
porch(tasks, 5)
.then(console.log)
.catch(console.error);
Same as example above but adding a 1000ms delay between batches.
porch(tasks, 5, 1000)
.then(console.log)
.catch(console.error);
Same as above, but in this case if a promise fails, processing will continue
instead of stopping the whole thing. When failFast
is set to false
, errors
will appear as the value/result for the relevant element in the results array
(failed tasks/promises won't end up in the catch()
method).
porch(tasks, 5, 1000, false)
.then(console.log)
stream.Readable createStream(tasks, concurrency, interval, failFast)
Same as porch()
.
A readable stream (stream.Readable
) instead of a Promise
. Each result will
be emitted as a data event and the stream will operate in objectMode
.
import { createStrean } from 'porch';
createStream(tasks, 5, 1000, false)
.on('error', err => console.error('error', err))
.on('data', data => console.log('data', data))
.on('end', _ => console.log('ended!'));
// This example assumes that tasks will resolve to string values so that the
// resulting stream can be directly piped to stdout.
createStream(tasks, 5, 1000, false).pipe(process.stdout);
FAQs
Promise Orchestrator: Process promise-based tasks in series and parallel, controlling concurrency and throttling
The npm package porch receives a total of 35 weekly downloads. As such, porch popularity was classified as not popular.
We found that porch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.